home *** CD-ROM | disk | FTP | other *** search
- /*==============================================================================
-
- FICHERO: GLOBAL.H
-
- AUTOR: ANTONIO LADESA JURADO
-
- FECHA: 24/6/94
-
- DESCRIPCION:
-
- Fichero de cabecera global
-
- Declara los tipos y constantes globales a todo el programa.
-
- ==============================================================================*/
-
- #define FALSO 0
- #define CIERTO 1
-
- /* ancho máximo las imágenes */
- #define ANCHO_MAXIMO 1024
- /* número de formatos gráficos */
- #define NUM_FORMATOS 7
-
- /* formatos de ficheros soportados */
- typedef enum {MACPAINT,PCX,GIF,TIFF,IMG,TGA,BMP,OTRO} formatos;
- /* modos de video */
- typedef enum {VIDEOmono,VIDEOega,VIDEOvga} modos;
-
- /* opciones */
- typedef enum
- {
- /* no opcion */
- NOOPC = -1,
-
- /* opciones principales */
- OPCargar,OPVer,OPSalvar,OPNuevo,OPReflejoH,OPReflejoV,OPByN,OPVideoInverso,
- OPGris,OPColores,OPImprimir,OPVision,OPMemoria,OPEscalar,OPInformar,OPSalir,
-
- /* directorio y discos */
- OPdirarr,OPdirabj,OPdriveA,OPdriveB,OPdriveC,
-
- /* formatos */
- OPMAC,OPPCX,OPGIF,OPTIF,
- OPIMG,OPTGA,OPBMP,
-
- /* operaciones con ficheros DOS */
- OPBorrar,OPRenombrar,
-
- /* escalado */
- OPanchoMas,OPanchoMenos,OPaltoMas,OPaltoMenos,OPEscalado,
-
- /* tipos de memoria */
- OPXMS,OPEMS,OPVMS,
-
- /* impresión */
- OPImpresion,OPEpson,OPPostScript,OPdestinoFichero,OPdestinoImpresora,
-
- /* dithering */
- OPBayer,OPFloyd,OPStucki,OPBurkes,
-
- /* confirmación */
- OPCancelar,OPAceptar,
-
- /* lista de ficheros */
- OPlista,
-
- /* fichero actual */
- OPfichero,
-
- /* fichero DOS */
- OPficheroDOS,
-
- } OPCIONES;